home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / pcplus2.zip / RBBS13.ASP < prev    next >
Text File  |  1988-01-01  |  808b  |  26 lines

  1. ;*************************************************************************
  2. ;* RBBS13.ASP  (C) 1987 DATASTORM TECHNOLOGIES, INC.                     *
  3. ;*                                                                       *
  4. ;* A sample ASPECT script file for logging onto RBBS version 13.1A       *
  5. ;*                                                                       *
  6. ;*************************************************************************
  7.  
  8. CLEAR
  9. LOCATE 0 0
  10. BOX 0 0 4 23 14
  11. ATSAY 2 2 14 "Logging onto RBBS..."
  12. LOCATE 6 0
  13.  
  14. IF NOT LINKED
  15.    DIAL "4"                  ;set to your dial dir entry for RBBS
  16. ENDIF
  17.  
  18. PAUSE 1
  19. TRANSMIT "^M"
  20.  
  21. WAITFOR "What is your FIRST Name?"
  22. TRANSMIT "FIRSTNAME;LASTNAME;FAKE-PASSWORD^M"
  23.  
  24. ALARM 2                      ;inform user logon complete
  25.  
  26.